ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / FlexGridBase<T> Class / ShowGroups Property






In This Topic
    ShowGroups Property (FlexGridBase<T>)
    In This Topic
    Gets or sets whether the grid should insert group rows to delimit data groups.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.DefaultValueAttribute(True)>
    Public Overridable Property ShowGroups As System.Boolean
    'Usage
     
    
    Dim instance As FlexGridBase(Of T)
    Dim value As System.Boolean
     
    instance.ShowGroups = value
     
    value = instance.ShowGroups
    [System.ComponentModel.DefaultValue(true)]
    public virtual System.bool ShowGroups {get; set;}
    public read-write property ShowGroups: System.Boolean; virtual; 
    System.ComponentModel.DefaultValueAttribute()
    public function get,set ShowGroups : System.boolean
    [System.ComponentModel.DefaultValue(true)]
    public: __property virtual System.bool get_ShowGroups();
    public: __property virtual void set_ShowGroups( 
       System.bool value
    );
    [System.ComponentModel.DefaultValue(true)]
    public:
    virtual property System.bool ShowGroups {
       System.bool get();
       void set (    System.bool value);
    }
    Remarks
    Data groups are created by modifying the groupDescriptions property of the ICollectionView object used as the grid's itemsSource.
    See Also